home *** CD-ROM | disk | FTP | other *** search
/ Chip 2004 December / 2004-12 CHIP.iso / CHIP / Porady / Srodowisko PHP-MySQL / WAMP5 1.3 / wamp5_1.3.exe / {app} / Apache / include / os.h < prev    next >
C/C++ Source or Header  |  2004-02-20  |  6KB  |  193 lines

  1. /* Copyright 1999-2004 The Apache Software Foundation
  2.  *
  3.  * Licensed under the Apache License, Version 2.0 (the "License");
  4.  * you may not use this file except in compliance with the License.
  5.  * You may obtain a copy of the License at
  6.  *
  7.  *     http://www.apache.org/licenses/LICENSE-2.0
  8.  *
  9.  * Unless required by applicable law or agreed to in writing, software
  10.  * distributed under the License is distributed on an "AS IS" BASIS,
  11.  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  12.  * See the License for the specific language governing permissions and
  13.  * limitations under the License.
  14.  */
  15.  
  16. #ifndef APACHE_OS_H
  17. #define APACHE_OS_H
  18.  
  19. #ifdef WIN32
  20.  
  21. /* 
  22.  * Compile the server including all the Windows NT 4.0 header files by 
  23.  * default. We still want the server to run on Win95/98 so use 
  24.  * runtime checks before calling NT specific functions to verify we are 
  25.  * really running on an NT system.
  26.  */
  27. #define _WIN32_WINNT 0x0400
  28.  
  29. /* If it isn't too late, prevent windows.h from including the original
  30.  * winsock.h header, so that we can still include winsock2.h
  31.  */
  32. #if !defined(_WINSOCKAPI_) || !defined(_WINDOWS_)
  33. #define _WINSOCKAPI_
  34. #include <windows.h>
  35. #include <winsock2.h>
  36. #include <mswsock.h>
  37. #else
  38. #include <windows.h>
  39. #endif
  40. #include <process.h>
  41. #include <malloc.h>
  42. #include <io.h>
  43. #include <fcntl.h>
  44.  
  45. #define PLATFORM "Win32"
  46.  
  47. /*
  48.  * This file in included in all Apache source code. It contains definitions
  49.  * of facilities available on _this_ operating system (HAVE_* macros),
  50.  * and prototypes of OS specific functions defined in os.c
  51.  */
  52.  
  53. /* temporarily replace crypt */
  54. /* char *crypt(const char *pw, const char *salt); */
  55. #define crypt(buf,salt)        (buf)
  56.  
  57. /* Although DIR_TYPE is dirent (see nt/readdir.h) we need direct.h for
  58.    chdir() */
  59. #include <direct.h>
  60.  
  61. #define STATUS
  62. #ifndef STRICT
  63. #define STRICT
  64. #endif
  65. #define CASE_BLIND_FILESYSTEM
  66. #define NO_WRITEV
  67. #define NO_SETSID
  68. #define NO_USE_SIGACTION
  69. #define NO_TIMES
  70. #define NO_GETTIMEOFDAY
  71. #define USE_LONGJMP
  72. #define HAVE_MMAP
  73. #define USE_MMAP_SCOREBOARD
  74. #define MULTITHREAD
  75. #define HAVE_CANONICAL_FILENAME
  76. #define HAVE_DRIVE_LETTERS
  77. #define HAVE_UNC_PATHS
  78. typedef int uid_t;
  79. typedef int gid_t;
  80. typedef int pid_t;
  81. typedef int tid_t;
  82. #ifdef _MSC_VER
  83. /* modified to match declaration in sys/stat.h */
  84. typedef unsigned short mode_t;
  85. #endif
  86. typedef char * caddr_t;
  87.  
  88. /*
  89. Define export types. API_EXPORT_NONSTD is a nasty hack to avoid having to declare
  90. every configuration function as __stdcall.
  91. */
  92.  
  93. #ifdef SHARED_MODULE
  94. #define API_VAR_EXPORT          __declspec(dllimport)
  95. #define API_EXPORT(type)        __declspec(dllimport) type __stdcall
  96. #define API_EXPORT_NONSTD(type) __declspec(dllimport) type __cdecl
  97. #else
  98. #define API_VAR_EXPORT          __declspec(dllexport)
  99. #define API_EXPORT(type)        __declspec(dllexport) type __stdcall
  100. #define API_EXPORT_NONSTD(type) __declspec(dllexport) type __cdecl
  101. #endif
  102. #define MODULE_VAR_EXPORT   __declspec(dllexport)
  103.  
  104. #define strcasecmp(s1, s2) stricmp(s1, s2)
  105. #define strncasecmp(s1, s2, n) strnicmp(s1, s2, n)
  106. #define lstat(x, y) stat(x, y)
  107. #ifndef S_ISLNK
  108. #define S_ISLNK(m) (0)
  109. #endif
  110. #ifndef S_ISREG
  111. #define S_ISREG(m) ((m & _S_IFREG) == _S_IFREG)
  112. #endif
  113. #ifndef S_ISDIR
  114. #define S_ISDIR(m) (((m) & _S_IFDIR) == _S_IFDIR)
  115. #endif
  116. #define STDIN_FILENO  0
  117. #define STDOUT_FILENO 1
  118. #define STDERR_FILENO 2
  119. #define JMP_BUF jmp_buf
  120. #define sleep(t) Sleep(t*1000)
  121. #ifndef O_CREAT
  122. #define O_CREAT _O_CREAT
  123. #endif
  124. #ifndef O_RDWR
  125. #define O_RDWR _O_RDWR
  126. #endif
  127. #define SIGPIPE 17
  128. /* Seems Windows is not a subgenius */
  129. #define NO_SLACK
  130. #include <stddef.h>
  131.  
  132. /* MSVC asserts that strtol "errno is set to ERANGE 
  133.  * if overflow or underflow occurs"
  134.  * Ergo we can use the library strtol safely.
  135.  */
  136. #define ap_strtol strtol
  137.  
  138. #define NO_OTHER_CHILD
  139. #define NO_RELIABLE_PIPED_LOGS
  140.  
  141. __inline int ap_os_is_path_absolute(const char *file)
  142. {
  143.   /* For now, just do the same check that http_request.c and mod_alias.c
  144.    * do. 
  145.    */
  146.   return file && (file[0] == '/' || (file[1] == ':' && file[2] == '/'));
  147. }
  148.  
  149. #define stat(f,ps)  os_stat(f,ps)
  150. API_EXPORT(int) os_stat(const char *szPath,struct stat *pStat);
  151.  
  152. API_EXPORT(int) os_strftime(char *s, size_t max, const char *format, const struct tm *tm);
  153.  
  154. #define _spawnv(mode,cmdname,argv)        os_spawnv(mode,cmdname,argv)
  155. #define spawnv(mode,cmdname,argv)        os_spawnv(mode,cmdname,argv)
  156. API_EXPORT(int) os_spawnv(int mode,const char *cmdname,const char *const *argv);
  157. #define _spawnve(mode,cmdname,argv,envp)    os_spawnve(mode,cmdname,argv,envp)
  158. #define spawnve(mode,cmdname,argv,envp)        os_spawnve(mode,cmdname,argv,envp)
  159. API_EXPORT(int) os_spawnve(int mode,const char *cmdname,const char *const *argv,const char *const *envp);
  160. #define _spawnle                os_spawnle
  161. #define spawnle                    os_spawnle
  162. API_EXPORT_NONSTD(int) os_spawnle(int mode,const char *cmdname,...);
  163.  
  164. /* OS-dependent filename routines in util_win32.c */
  165.  
  166. API_EXPORT(int) ap_os_is_filename_valid(const char *file);
  167.  
  168. /* Abstractions for dealing with shared object files (DLLs on Win32).
  169.  * These are used by mod_so.c
  170.  */
  171. #define ap_os_dso_handle_t  HINSTANCE
  172. #define ap_os_dso_init()
  173. #define ap_os_dso_unload(l) FreeLibrary(l)
  174. #define ap_os_dso_sym(h,s)  GetProcAddress(h,s)
  175.  
  176. API_EXPORT(ap_os_dso_handle_t) ap_os_dso_load(const char *);
  177. API_EXPORT(const char *) ap_os_dso_error(void);
  178.  
  179. /* Other ap_os_ routines not used by this platform */
  180. #define ap_os_kill(pid, sig)                kill(pid, sig)
  181.  
  182. /* Some Win32isms */
  183. #define HAVE_ISNAN
  184. #define isnan(n) _isnan(n)
  185. #define HAVE_ISINF
  186. #define isinf(n) (!_finite(n))
  187.  
  188. #define gettid() ((tid_t)GetCurrentThreadId())
  189.  
  190. #endif /* WIN32 */
  191.  
  192. #endif   /* ! APACHE_OS_H */
  193.